home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / Mig_Evict.c < prev    next >
C/C++ Source or Header  |  1990-06-22  |  2KB  |  79 lines

  1. /* 
  2.  * Mig_Evict.c --
  3.  *
  4.  *    Force the daemon on the local host to evict foreign processes.
  5.  *    This might be useful if one is remotely logged into a host
  6.  *    and wishes to evict processes, since automatic migration is done
  7.  *    when the user is physically present to interact with the host.
  8.  *
  9.  * Copyright 1990 Regents of the University of California
  10.  * Permission to use, copy, modify, and distribute this
  11.  * software and its documentation for any purpose and without
  12.  * fee is hereby granted, provided that the above copyright
  13.  * notice appear in all copies.  The University of California
  14.  * makes no representations about the suitability of this
  15.  * software for any purpose.  It is provided "as is" without
  16.  * express or implied warranty.
  17.  */
  18.  
  19. #ifndef lint
  20. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_Evict.c,v 2.1 90/06/22 14:58:20 douglis Exp $ SPRITE (Berkeley)";
  21. #endif /* not lint */
  22.  
  23.  
  24. #include <sprite.h>
  25. #include <stdio.h>
  26. #include <mig.h>
  27. #include <errno.h>
  28.  
  29.  
  30. /*
  31.  *----------------------------------------------------------------------
  32.  *
  33.  * Mig_Evict --
  34.  *
  35.  *    Tell the local daemon to evict foreign processes.
  36.  *
  37.  * Results:
  38.  *    The number of processes evicted is returned if the call is successful,
  39.  *    or -1 is returned on error, with errno indicating the error.
  40.  *
  41.  * Side effects:
  42.  *    Does ioctl to server.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46. int
  47. Mig_Evict()
  48. {
  49.     int status;
  50.     int numHosts;
  51.     
  52.     if (mig_LocalPdev < 0) {
  53.     if (MigOpenPdev(FALSE) < 0) {
  54.         return(-1);
  55.     }
  56.     }
  57.         
  58.     if (MigSetAlarm() < 0) {
  59.     fprintf(stderr,
  60.         "Error setting alarm for contact with migd.\n");
  61.     return(-1);
  62.     }
  63.     status = Fs_IOControl(mig_LocalPdev, IOC_MIG_EVICT,
  64.               0, (char *) NULL,
  65.               sizeof(int), (char *) &numHosts);
  66.     if (MigClearAlarm() < 0) {
  67.     fprintf(stderr,
  68.         "Error clearing alarm for contact with migd.\n");
  69.     }
  70.     if (status != SUCCESS) {
  71.     fprintf(stderr,
  72.            "Mig_Evict: error during ioctl to local daemon: %s\n",
  73.            Stat_GetMsg(status));
  74.     errno = Compat_MapCode(status);
  75.     return(-1);
  76.     }
  77.     return(numHosts);
  78. }
  79.